www.gusucode.com > WSTMall PHP网店系统 v1.6.0PHP源码程序 > WSTMall PHP网店系统 v1.6.0/wstmall_v1.6.0_160506/wstmall_v1.6.0_160506/ThinkPHP/Library/Vendor/Boris/Inspector.php

    <?php

/* vim: set shiftwidth=2 expandtab softtabstop=2: */

namespace Boris;

/**
 * Something that is capable of returning a useful representation of a variable.
 */
interface Inspector {
  /**
   * Return a debug-friendly string representation of $variable.
   *
   * @param mixed $variable
   *
   * @return string
   */
  public function inspect($variable);
}